crypto/tls.Conn.scts (field)

11 uses

	crypto/tls (current package)
		conn.go#L55: 	scts             [][]byte // signed certificate timestamps from server
		conn.go#L1634: 	state.SignedCertificateTimestamps = c.scts
		handshake_client.go#L909: 	c.scts = hs.serverHello.scts
		handshake_client.go#L940: 	if len(c.scts) == 0 && len(hs.session.scts) != 0 {
		handshake_client.go#L941: 		c.scts = hs.session.scts
		handshake_client_tls13.go#L470: 	c.scts = hs.session.scts
		handshake_client_tls13.go#L655: 	c.scts = certMsg.certificate.SignedCertificateTimestamps
		handshake_server.go#L533: 	c.scts = sessionState.scts
		handshake_server.go#L959: 	c.scts = certificate.SignedCertificateTimestamps
		handshake_server_tls13.go#L457: 		c.scts = sessionState.scts
		ticket.go#L302: 		scts:              c.scts,